1e7df5625637ecb43fd55c87d5d63e6a8d106520,platform/lang-impl/src/com/intellij/application/options/GeneralCodeStylePanel.java,GeneralCodeStylePanel,resetImpl,#CodeStyleSettings#,295

Before Change


      }
      else {
        FileType type = entry.getKey();
        editor.reset(settings, settings.getAdditionalIndentOptions(type));
      }
    }

After Change


      }
      else {
        FileType type = entry.getKey();
        CodeStyleSettings.IndentOptions additionalIndentOptions = settings.getAdditionalIndentOptions(type);
        if (additionalIndentOptions != null) {
          editor.reset(settings, additionalIndentOptions);
        }
      }